home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / libextra / mypow.c < prev    next >
C/C++ Source or Header  |  1994-08-09  |  109b  |  8 lines

  1. extern double pow(const double x, const double y);
  2.  
  3. double
  4. mypow(double x, double y)
  5. {
  6.   return pow(x, y);
  7. }
  8.